home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Deutsche Edition 1
/
Deutsche Edition 1.iso
/
amok
/
amok_lha
/
amok58.lha
/
NPrint
/
txt
/
trenne.def
< prev
next >
Wrap
Text File
|
1993-08-15
|
866b
|
32 lines
DEFINITION MODULE Trenne;
(**********************************************************************
:Program. Trenne
:Contents. Insert hyphens in a word (german)
:Author. Toolbox 4 89 Matthias Uphoff (Turbo Pascal)
:Author. Ported to M2 by Oliver Schersand
:Address. Schillerstr 4 7805 Bötzingen
:Phone. 07663/3049
:Copyright. Public Domain
:Language. Modula-2
:Translator. M2Amiga AMSoft 3.3d
:History. V1.0 11.02.1990
**********************************************************************)
PROCEDURE Trennstrich(VAR Zeile : ARRAY OF CHAR;
TrennChar : CHAR);
(*
Attention the file TrennTab.txt must be in devs:
INPUT: Zeile A german word
INPUT: TrennChar the sign for the hyphen
OUTUT: All possibel hyphens in the german word
*)
END Trenne.